home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #12 / K-CD-12-2002.ISO / The Sum of All Fears / data1.cab / Game_Root / SOAF.sdf < prev    next >
Encoding:
Text File  |  2002-05-14  |  25.2 KB  |  518 lines

  1. // Scripting Definition File for Ike
  2. //    This file is read by ScriptEd.dll via Igor
  3.  
  4.  
  5. /*
  6. ---ENUMERATED TYPES---
  7. */
  8. enum CompareOp {"is equal to", "is less than", "is greater than", "is less than or equal to", 
  9.     "is greater than or equal to", "is not equal to"};
  10. enum FloatCompareOp {"is less than", "is greater than"};
  11. enum EqualityOp {"is equal to", "is not equal to"};
  12. enum Decoration {"National Defense Eagle", "Distinguished Marksmanship",
  13.     "Exemplary Conduct Under Duress", "Intelligence Star", "Exceptional Field Service",
  14.     "First Segment Ribbon", "Second Segment Ribbon", "Third Segment Ribbon", "Fourth Segment Ribbon"};
  15. enum Weather {"clear", "rain", "snow"};
  16. enum CompanyColor {"red", "blue", "green", "gold", "neutral"};
  17.  
  18. /*
  19. ---TAG TYPES---
  20. */
  21. tag Thing;
  22. tag Team : Thing;
  23. tag TeamRef : Team;
  24. tag Platoon : Thing;
  25. tag PlatoonRef : Platoon;
  26. tag Company : Thing;
  27. tag CompanyRef : Company;
  28. tag Location : Thing;
  29. tag Zone : Location;
  30. tag ZoneRef : Zone;
  31. tag Effect : Location;
  32. tag Object : Location;
  33. tag Actor : Location;
  34. tag ActorRef : Actor;
  35. tag Vehicle : Location;
  36. tag VehicleRef : Vehicle;
  37. tag Door;
  38.  
  39. tag Objective;
  40. tag Plan;
  41.  
  42. tag Counter;
  43. tag Flag;
  44. tag Timer;
  45.  
  46. /*
  47. ---TRIGGERS---
  48. */
  49. // Time-based
  50. event Startup() "The simulation is starting.";
  51. event TimeElapsed(float duration=10.0) "%0 second(s) elapsed.";
  52. event TimerExpired(Timer timer) "%0 has expired.";
  53. event TimerExpiredForGame() "The game timer has expired.";
  54.  
  55. // Space-based
  56. event ProximityActor(Actor actor, Location location, float range=10.0) "%0 is within %2 meter(s) of %1.";
  57. event ProximityTeam(Team team, Location location, float range=10.0) "A member of %0 is within %2 meter(s) of %1.";
  58. event ProximityCompany(Company company, Location location, float range=10.0) "An actor in %0 is within %2 meter(s) of %1.";
  59. event ProximityVehicle(Vehicle vehicle, Location location, float range=10.0) "%0 is within %2 meter(s) of %1.";
  60.  
  61. // Death
  62. event DeathActor(Actor actor) "%0 has been killed.";
  63. event DeathTeam(Team team) "All members of %0 have been killed.";
  64. event DeathTeamMember(Team team) "A member of %0 has been killed.";
  65. event DeathPlatoon(Platoon platoon) "All members of %0 have been killed.";
  66. event DeathCompany(Company company) "All actors in %0 have been killed.";
  67. event DeathVehicle(Vehicle vehicle) "%0 has been destroyed.";
  68.  
  69. // Item usage
  70. event ActorFired(Actor actor) "%0 discharged a weapon.";
  71. event DemoChargePlaced(Location location, float range=10.0) "A demo charge was placed within %1 meter(s) of %0.";
  72.  
  73. event ProximityPlatoon(Platoon platoon, Location location, float range=10.0) "A member of %0 is within %2 meter(s) of %1.";
  74.  
  75. // Map object states
  76. //event DoorOpened(string door) "%0 has opened.";
  77. //event DoorClosed(string door) "%0 has closed.";
  78. event DoorOpened(Door door) "%0 has opened.";
  79. event DoorClosed(Door door) "%0 has closed.";
  80. event MapObjectDestroyed(string object) "%0 has been destroyed.";
  81.  
  82. // UI actions, intended for tutorial
  83. event UICommandModeActivated() "The player activated Command Mode.";
  84. event UITeamSelected() "The player selected a fire team.";
  85. event UIWaypointSet() "The player set a waypoint.";
  86. event UIFireFieldSet() "The player set a field of fire.";
  87. event _UIActionSet() "The player set an action point."; // obsolete
  88. event UIROESet() "The player set an ROE.";
  89.  
  90. // Escorting captives and hostages
  91. event EscortInitiated(Actor actor) "The escort of %0 has begun.";
  92. event EscortAborted(Actor actor) "The escort of %0 has been aborted.";
  93. event EscortCompleted(Actor actor) "The escort of %0 has been completed.";
  94.  
  95. // Rout (actors fled or killed)
  96. event RoutActor(Actor actor) "%0 has fled or been killed.";
  97. event RoutTeam(Team team) "All members of %0 have fled or been killed.";
  98. event RoutPlatoon(Platoon platoon) "All members of %0 have fled or been killed.";
  99. event RoutCompany(Company company) "All actors in %0 have fled or been killed.";
  100.  
  101. // Direct call
  102. event Call() "This block has been called directly from the script.";
  103.  
  104. // Looping
  105. event LoopActors(ActorRef actor) "An actor loop is ready to process %0.";
  106. event LoopTeams(TeamRef team) "A team loop is ready to process %0.";
  107. event LoopPlatoons(PlatoonRef platoon) "A platoon loop is ready to process %0.";
  108. event LoopCompanies(CompanyRef company) "A company loop is ready to process %0.";
  109.  
  110. event PreAction() "The simulation is initializing.";
  111.  
  112. event NoPlayersLeft() "All players have died or left the game.";
  113.  
  114. // Object manipulation
  115. event ObjectManipulated(string object) "%0 has been manipulated.";
  116.  
  117. event DeathAnyActor(ActorRef actor) "%0 has been killed.";
  118.  
  119. /*
  120. ---RESPONSES--- (always return void)
  121. */
  122. // Timers, flags, and counters
  123. void TimerSet(Timer timer, float duration) "Set %0 to expire in %1 second(s).";
  124. void TimerKill(Timer timer) "Cancel %0.";
  125. void FlagSet(Flag flag, bool state=true) "Set %0 to %1.";
  126. void CounterSet(Counter counter, int value=0) "Set %0 to %1.";
  127. void CounterIncrement(Counter counter) "Increment %0.";
  128. void CounterDecrement(Counter counter) "Decrement %0.";
  129.  
  130. // Variables
  131. void VariableSetTeam(TeamRef variable, Team team) "Set %0 to %1.";
  132. void VariableSetPlatoon(PlatoonRef variable, Platoon platoon) "Set %0 to %1.";
  133. void VariableSetCompany(CompanyRef variable, Company company) "Set %0 to %1.";
  134. void VariableSetActor(ActorRef variable, Actor actor) "Set %0 to %1.";
  135. void VariableSetVehicle(VehicleRef variable, Vehicle vehicle) "Set %0 to %1.";
  136.  
  137. // Conditionals
  138. void StopIf(bool condition) "Skip the remaining responses if %0.";
  139. void ContinueIf(bool condition) "Continue executing responses if %0.";
  140.  
  141. // Script management
  142. void BlockPreserve() "Allow this block to be reactivated.";
  143. void BlockRemove() "Prevent this block from being reactivated.";
  144. void GroupEnable(Group group) "Enable the %0 script blocks.";
  145. void GroupDisable(Group group) "Disable the %0 script blocks.";
  146.  
  147. // Messages
  148. void DisplayMessageAll(string text) "Display %0 to all players.";
  149. void DisplayMessagePlayer(string text, Actor player) "Display %0 to %1.";
  150. void DisplayMessageCompany(string text, Company company) "Display %0 to all members of %1.";
  151.  
  152. // Mission termination
  153. void DeclareMissionComplete(string text) "Display %0 and register mission completion.";
  154. void DeclareMissionFailed(string text) "Display %0 and register mission failure.";
  155.  
  156. // Alternative action termination
  157. void EndGameAll(string text) "End the game and display %0";
  158. void _EndGamePlayerVictory(Actor victor, string wintext, string losetext) "End the game and display %1 to %0 and %2 to all others."; // obsolete
  159. void EndGameCompanyVictory(Company victors, string wintext, string losetext) "End the game and display %1 to members of %0 and %2 to all others.";
  160.  
  161. // Trigger plans (Team AI)
  162. void _ExecutePlanCamera(Plan plan) "Execute %0."; // obsolete
  163. void ExecutePlanTeam(Plan plan, Team team) "Assign %0 to %1 and execute.";
  164. void ExecutePlanVehicle(Plan plan, Vehicle vehicle) "Assign %0 to %1 and execute.";
  165. void _AbortPlanCamera(Plan plan) "Cancel execution of %0."; // obsolete
  166. void AbortPlanTeam(Team team) "Cancel execution of any plan assigned to %0.";
  167. void AbortPlanVehicle(Vehicle vehicle) "Cancel execution of any plan assigned to %0.";
  168.  
  169. // Message boxes
  170. void DisplayMessageBoxAll(string text, float time=3.0) "Display %0 to all players for %1 second(s).";
  171. void DisplayMessageBoxPlayer(string text, float time=3.0, Actor player) "Display %0 to %2 for %1 second(s).";
  172. void DisplayMessageBoxCompany(string text, float time=3.0, Company company) "Display %0 to all members of %2 for %1 second(s).";
  173. void DisplayVoiceover(string text, string sound, float volume=1.0) "Display %0 while playing %1 at volume %2.";
  174.  
  175. // Cheats
  176. void InvincibilityOnActor(Actor actor) "Make %0 invincible.";
  177. void InvincibilityOffActor(Actor actor) "Make %0 vulnerable.";
  178. void InvisibilityOnActor(Actor actor) "Make %0 undetectable.";
  179. void InvisibilityOffActor(Actor actor) "Make %0 detectable.";
  180.  
  181. // Miscellaneous
  182. void TeleportObject(Location object, Location destination) "Teleport %0 to %1.";
  183. void KillActor(Actor actor) "Have %0 commit suicide.";
  184. void Assert(bool condition, string message) "If %0 is false, add %1 to the error log.";
  185. void SetActorKit(Actor actor, string kit) "Assign %1 to %0.";
  186.  
  187. // Hidden objects
  188. void HideThing(Thing thing) "Hide %0 from the game world.";
  189. void ShowThing(Thing thing) "Make %0 visible to the game world.";
  190.  
  191. // Company score
  192. void CompanyScoreSet(Company company, int score=0) "Set the score for %0 to %1.";
  193. void CompanyScoreIncrement(Company company) "Increment the score for %0.";
  194. void CompanyScoreDecrement(Company company) "Decrement the score for %0.";
  195.  
  196. // Lighting
  197. void _TurnLightsOn(int room) "Turn on all room lighting in %0."; // obsolete
  198. void _TurnLightsOff(int room) "Turn off all room lighting in %0."; // obsolete
  199.  
  200. // Map object manipulation
  201. void ResetMapObject(string object) "Reset of the state of %0.";
  202. //void OpenDoor(string door) "Open %0.";
  203. //void CloseDoor(string door) "Close %0.";
  204. void OpenDoor(Door door) "Open %0.";
  205. void CloseDoor(Door door) "Close %0.";
  206. void DestroyMapObject(string object) "Destroy %0.";
  207.  
  208. // Objectives
  209. void ObjectiveAdd(Objective objective) "Add %0 to the objective list.";
  210. void ObjectiveRemove(Objective objective) "Remove %0 from the objective list.";
  211. void ObjectiveComplete(Objective objective) "Mark %0 complete in the objective list.";
  212. void ObjectiveFailed(Objective objective) "Mark %0 failed in the objective list.";
  213.  
  214. // Campaign rewards
  215. void AwardDecoration(Decoration decoration, Actor actor) "Award %0 to %1.";
  216. void _UnlockHeroCharacter() "Unlock the next hero character in the campaign.";
  217.  
  218. // Toggle team AI
  219. void TeamAIOn(Team team) "Turn on team AI for %0.";
  220. void TeamAIOff(Team team) "Turn off team AI for %0.";
  221.  
  222. // Flee behavior
  223. void PanicActor(Actor actor) "Force %0 to flee.";
  224. void PanicTeam(Team team) "Force %0 to flee.";
  225. void PanicPlatoon(Platoon platoon) "Force %0 to flee.";
  226. void PanicCompany(Company company) "Force %0 to flee.";
  227.  
  228. // Group invincibility
  229. void InvincibilityOnTeam(Team team) "Make all members of %0 invincible.";
  230. void InvincibilityOffTeam(Team team) "Make all members of %0 vulnerable.";
  231. void InvincibilityOnPlatoon(Platoon platoon) "Make all members of %0 invincible.";
  232. void InvincibilityOffPlatoon(Platoon platoon) "Make all members of %0 vulnerable.";
  233. void InvincibilityOnCompany(Company company) "Make all actors in %0 invincible.";
  234. void InvincibilityOffCompany(Company company) "Make all actors in %0 vulnerable.";
  235.  
  236. // Group invisibility (undetectable, non-targetable)
  237. void InvisibilityOnTeam(Team team) "Make all members of %0 undetectable.";
  238. void InvisibilityOffTeam(Team team) "Make all members of %0 detectable.";
  239. void InvisibilityOnPlatoon(Platoon platoon) "Make all members of %0 undetectable.";
  240. void InvisibilityOffPlatoon(Platoon platoon) "Make all members of %0 detectable.";
  241. void InvisibilityOnCompany(Company company) "Make all actors in %0 undetectable.";
  242. void InvisibilityOffCompany(Company company) "Make all actors in %0 detectable.";
  243.  
  244. // Inventory
  245. void AmmoUnlimited() "Give all actors infinite ammunition.";
  246. void AmmoLimited() "Cancel infinite ammunition setting.";
  247. void ReplenishInventory(Actor actor) "Replenish the inventory of %0.";
  248.  
  249. // Disable autoend
  250. void DisableAutoendNoPlayers() "Do not end the game automatically when there are no players left.";
  251. void DisableAutoendTimer() "Do not end the game automatically when the game timer expires.";
  252.  
  253. // Escortable states
  254. void CaptiveActorOn(Actor actor) "Set %0 to captive behavior.";
  255. void CaptiveActorOff(Actor actor) "Cancel captive behavior for %0.";
  256. void CaptiveTeamOn(Team team) "Set all members of %0 to captive behavior.";
  257. void CaptiveTeamOff(Team team) "Cancel captive behavior for all members of %0.";
  258. void HostageActorOn(Actor actor) "Set %0 to hostage behavior.";
  259. void HostageActorOff(Actor actor) "Cancel hostage behavior for %0.";
  260. void HostageTeamOn(Team team) "Set all members of %0 to hostage behavior.";
  261. void HostageTeamOff(Team team) "Cancel hostage behavior for all members of %0.";
  262.  
  263. // Fog
  264. void FogOn(int red, int green, int blue, float near, float far) "Turn on fog with color %0,%1,%2 between %3 and %4 meter(s).";
  265. void FogOff() "Turn off fog";
  266.  
  267. // Toggle avatar switching
  268. void AvatarSwitchingOn() "Allow players to change avatars.";
  269. void AvatarSwitchingOff() "Prevent players from changing avatars.";
  270.  
  271. // Sounds
  272. void PlaySound(string sound, float volume=1.0) "Play %0 at volume %1.";
  273. void PlaySound3D(string sound, Location location, float volume=1.0, float loop=0.0) "Play %0 at %1 with volume %2, looping for %3 second(s).";
  274. void PlaySoundPlayer(string male1, string male2, string female) "Play %0, %1, or %2 based on the composition of the player's platoon.";
  275.  
  276. void EffectActivate(Effect effect) "Activate %0.";
  277.  
  278. void AwardDecorationTeam(Decoration decoration, Team team) "Award %0 to all members of %1.";
  279. void AwardDecorationPlatoon(Decoration decoration, Platoon platoon) "Award %0 to all members of %1.";
  280.  
  281. // Map properties
  282. void WeatherChange(Weather weather="clear") "Change the weather to %0.";
  283. void SpottingDistanceChange(float distance) "Change the maximum spotting distance to %0.";
  284.  
  285. // Spawning - for startup only
  286. void SpawnActor(ActorRef actor, Team team, string class, string kit, Location location) "Spawn %0 onto %1 with %2 and %3 at %4.";
  287. void SpawnTeam(TeamRef team, Platoon platoon) "Spawn %0 onto %1.";
  288. void SpawnPlatoon(PlatoonRef platoon, Company company) "Spawn %0 onto %1.";
  289. void SpawnCompany(CompanyRef company) "Spawn %0.";
  290.  
  291. // Direct block calls
  292. void QueueCall(Group group) "Call %0 after this block.";
  293. void RedirectIf(bool condition, Group group) "If %0, stop and queue a call to %1.";
  294.  
  295. // Looping
  296. void QueueLoopActorsInCompany(Company company, Group group) "Use %1 to loop over all actors in %0 after this block.";
  297. void QueueLoopActorsInPlatoon(Platoon platoon, Group group) "Use %1 to loop over all actors in %0 after this block.";
  298. void QueueLoopActorsInTeam(Team team, Group group) "Use %1 to loop over all actors in %0 after this block.";
  299. void QueueLoopCompanies(Group group) "Use %0 to loop over all companies after this block.";
  300. void QueueLoopPlatoonsInCompany(Company company, Group group) "Use %1 to loop over all platoons in %0 after this block.";
  301. void QueueLoopTeamsInPlatoon(Platoon platoon, Group group) "Use %1 to loop over all teams in %0 after this block.";
  302.  
  303. // Toggle platoon AI
  304. void PlatoonAIOn(Platoon platoon) "Turn on platoon AI for %0.";
  305. void PlatoonAIOff(Platoon platoon) "Turn off platoon AI for %0.";
  306.  
  307. void ConsoleCommand(string command) "Execute %0.";
  308.  
  309. void SpawnOpposingForce(int size=30) "Spawn an opposing force with %0 members.";
  310.  
  311. void VariableSetZone(ZoneRef variable, Zone zone) "Set %0 to %1.";
  312.  
  313. // Company objectives
  314. void ObjectiveAddForCompany(Objective objective, Company company) "Add %0 to the objective list for %1.";
  315. void ObjectiveRemoveForCompany(Objective objective, Company company) "Remove %0 from the objective list for %1.";
  316. void ObjectiveCompleteForCompany(Objective objective, Company company) "Mark %0 complete in the objective list for %1.";
  317. void ObjectiveFailedForCompany(Objective objective, Company company) "Mark %0 failed in the objective list for %1.";
  318.  
  319. // End game states
  320. void MarkCompanyWin(Company company, string text) "Mark %0 as a winner and display %1 to its members";
  321. void MarkCompanyLose(Company company, string text) "Mark %0 as a loser and display %1 to its members";
  322. void MarkCompanyDraw(Company company, string text) "Mark %0 as tied and display %1 to its members";
  323.  
  324. void DestroyVehicle(Vehicle vehicle) "Destroy %0.";
  325.  
  326. void HideMapObject(string object) "Hide %0 from the game world.";
  327. void ShowMapObject(string object) "Make %0 visible to the game world.";
  328.  
  329. void SetEndGameMovie(string file) "Show the movie %0 when the game ends.";
  330.  
  331. // Command map markers
  332. void MapActorShow(Actor actor) "Show %0 on the command map for all players.";
  333. void MapActorShowCompany(Actor actor, Company company) "Show %0 on the command map for members of %1.";
  334. void MapActorHide(Actor actor) "Hide %0 on the command map for all players.";
  335. void MapActorHideCompany(Actor actor, Company company) "Hide %0 on the command map for members of %1.";
  336. void MapZoneShow(Zone zone, bool highlight=false) "Show %0 on the command map for all players, hightlight = %1.";
  337. void MapZoneShowCompany(Zone zone, bool highlight=false, Company company) "Show %0 on the command map for members of %2, highlight = %1.";
  338. void MapZoneHide(Zone zone) "Hide %0 on the command map for all players.";
  339. void MapZoneHideCompany(Zone zone, Company company) "Hide %0 on the command map for members of %1.";
  340.  
  341. // Additional door operations
  342. //void DoorBar(Door door) "Bar door %0.";
  343. //void DoorUnBar(Door door) "UnBar door %0.";
  344.  
  345. void MapZoneColor(Zone zone, CompanyColor color="neutral") "Mark %0 %1.";
  346.  
  347. void DoorBar(Door door) "Bar %0.";
  348. void DoorUnbar(Door door) "Unbar %0";
  349.  
  350. void TorchActorHeadOn(Actor actor) "Torch %0's Head ON";
  351. void TorchActorHeadOff(Actor actor) "Torch %0's Head OFF";
  352.  
  353. /*
  354. ---QUERIES--- (always return non-void)
  355. */
  356. // Flags and counters
  357. query bool GetFlagState(Flag flag) "The state of %0";
  358. query int GetCounter(Counter counter) "The value of %0";
  359.  
  360. // Integer arithmetic
  361. query int GetSum(int value1, int value2) "The result of %0 plus %1";
  362. query int GetDifference(int value1, int value2) "The result of %0 minus %1";
  363. query int GetProduct(int value1, int value2) "The result of %0 multiplied by %1";
  364. query int GetQuotient(int value1, int value2) "The result of %0 divided by %1";
  365. // Floating point arithmetic
  366. query float GetSum(float value1, float value2) "The result of %0 plus %1";
  367. query float GetDifference(float value1, float value2) "The result of %0 minus %1";
  368. query float GetProduct(float value1, float value2) "The result of %0 multiplied by %1";
  369. query float GetQuotient(float value1, float value2) "The result of %0 divided by %1";
  370.  
  371. // Type conversions
  372. query float ConvertIntegerToNumber(int value) "The number %0";
  373. query int ConvertNumberToInteger(float value) "%0 truncated to an integer";
  374.  
  375. // Equalities
  376. query bool CompareIntegers(int value1, int value2, CompareOp equality="is equal to") "%0 %2 %1";
  377. query bool CompareFloats(float value1, float value2, FloatCompareOp equality="is less than") "%0 %2 %1";
  378. query bool CompareThings(Thing thing1, Thing thing2, EqualityOp equality="is equal to") "%0 %2 %1";
  379.  
  380. // Logical operations
  381. query bool And(bool value1, bool value2) "%0 and %1";
  382. query bool Or(bool value1, bool value2) "%0 or %1";
  383. query bool Not(bool value) "The inverse of %0";
  384.  
  385. // Statistics
  386. query int GetKillsActor(Actor actor) "The number of kills for %0";
  387. query int GetKillsCompany(Company company) "The number of kills for %0";
  388. query int _GetDeathsActor(Actor actor) "The number of deaths for %0"; // obsolete
  389. query int _GetDeathsCompany(Company company) "The number of deaths for %0"; // obsolete
  390. query ActorRef GetActorMostKills() "The actor with the most kills";
  391. query CompanyRef GetCompanyMostKills() "The company with the most kills";
  392.  
  393. // Campaign difficulty settings
  394. query bool DifficultyEasy() "The campaign difficulty is set to Easy";
  395. query bool DifficultyNormal() "The campaign difficulty is set to Normal";
  396. query bool DifficultyHard() "The campaign difficulty is set to Hard";
  397.  
  398. // Random number generation
  399. query int RandomInteger(int low=1, int high=10) "A random integer between %0 and %1";
  400. query float RandomNumber(float low=0.0, float high=1.0) "A random number between %0 and %1";
  401.  
  402. // Active objects
  403. query bool ActorActive(Actor actor) "%0 is active";
  404. query int GetActiveActors() "The number of active actors";
  405. query ActorRef GetFirstActiveActor() "The first active actor";
  406. query int GetActiveCompanies() "The number of active companies";
  407. query CompanyRef GetFirstActiveCompany() "The first active company";
  408. query int GetCurrentTeamSize(Team team) "The number of active actors on %0";
  409. query int GetCurrentCompanySize(Company company) "The number of active actors on %0";
  410.  
  411. // Parent access
  412. query TeamRef GetActorTeam(Actor actor) "The team including %0";
  413. query CompanyRef GetActorCompany(Actor actor) "The company including %0";
  414. query CompanyRef GetVehicleCompany(Vehicle vehicle) "The company including %0";
  415.  
  416. query ActorRef GetActorShooter(Actor target) "The shooter who killed %0";
  417. query ActorRef GetVehicleShooter(Vehicle target) "The shooter who destroyed %0";
  418. query CompanyRef _GetActorShooterCompany(Actor target) "The company that killed %0"; // obsolete
  419. query CompanyRef _GetVehicleShooterCompany(Vehicle target) "The company that destroyed %0"; // obsolete
  420.  
  421. // Detection
  422. query bool ActorSeenByCompany(Actor actor, Company observers) "%0 is being seen by %1";
  423. query bool ActorHeardByCompany(Actor actor, Company listeners) "%0 is being heard by %1";
  424.  
  425. // Miscellaneous
  426. query float GetRange(Location location1, Location location2) "The distance between %0 and %1";
  427. query ActorRef GetNearestActor(Location location) "The actor nearest %0";
  428. query bool ActorValid(ActorRef actor) "%0 is a valid reference";
  429.  
  430. // Player access
  431. query ActorRef GetPlayerActor() "The player-controlled actor";
  432. query PlatoonRef GetPlayerPlatoon() "The player-controlled platoon";
  433. query CompanyRef GetPlayerCompany() "The player-friendly company";
  434. query CompanyRef _GetPlayerCompanyBlue() "The first multiplayer company"; // obsolete
  435. query CompanyRef _GetPlayerCompanyGold() "The second multiplayer company"; // obsolete
  436.  
  437. // Hidden objects
  438. query bool IsHidden(Thing thing) "%0 is currently hidden";
  439. query bool IsShown(Thing thing) "%0 is currently shown";
  440.  
  441. // Room lighting
  442. query bool LightsOn(int room) "The lights are on in %0";
  443. query bool LightsOff(int room) "The lights are off in %0";
  444. query int GetRoom(Location location) "The room containing %0";
  445.  
  446. // Map object states
  447. query bool MapObjectDestroyed(string object) "%0 has been destroyed";
  448. //query bool DoorOpen(string door) "%0 is open";
  449. //query bool DoorClosed(string door) "%0 is closed";
  450. query bool DoorOpen(Door door) "%0 is open";
  451. query bool DoorClosed(Door door) "%0 is closed";
  452.  
  453. // Escort state
  454. query bool IsBeingEscorted(Team team) "%0 is currently being escorted";
  455. query CompanyRef GetEscortCompany(Team team) "The company currently escorting %0";
  456.  
  457. // Group detection
  458. query bool TeamSeenByCompany(Team team, Company observers) "A member of %0 is being seen by %1";
  459. query bool TeamHeardByCompany(Team team, Company listeners) "A member of %0 is being heard by %1";
  460. query bool PlatoonSeenByCompany(Platoon platoon, Company observers) "A member of %0 is being seen by %1";
  461. query bool PlatoonHeardByCompany(Platoon platoon, Company listeners) "A member of %0 is being heard by %1";
  462. query bool CompanySeenByCompany(Company company, Company observers) "A member of %0 is being seen by %1";
  463. query bool CompanyHeardByCompany(Company company, Company listeners) "A member of %0 is being heard by %1";
  464.  
  465. // Variable validation
  466. query bool TeamValid(TeamRef team) "%0 is a valid reference";
  467. query bool PlatoonValid(PlatoonRef platoon) "%0 is a valid reference";
  468. query bool CompanyValid(CompanyRef company) "%0 is a valid reference";
  469. query bool VehicleValid(VehicleRef vehicle) "%0 is a valid reference";
  470.  
  471. // String operations
  472. query string ConvertIntegerToString(int value) "%0 as text";
  473. query string ConvertNumberToString(float value) "%0 as text";
  474. query string GetActorOwnerName(Actor actor) "The owner of %0";
  475. query string ConcatenateStrings(string start, string end) "%0 + %1";
  476.  
  477. query int GetCurrentPlatoonSize(Platoon platoon) "The number of active actors on %0";
  478.  
  479. // Proximity
  480. query int TeamMembersAtLocation(Team team, Location location, float range=10.0) "The number of members of %0 within %2 meter(s) of %1";
  481. query int PlatoonMembersAtLocation(Platoon platoon, Location location, float range=10.0) "The number of members of %0 within %2 meter(s) of %1";
  482. query int CompanyMembersAtLocation(Company company, Location location, float range=10.0) "The number of members of %0 within %2 meter(s) of %1";
  483.  
  484. // Platoon capabilities
  485. query int PlatoonDemoChargeCount(Platoon platoon) "The number of demo charges available to %0";
  486. query int PlatoonAntiTankRocketCount(Platoon platoon) "The number of anit-tank rockets available to %0";
  487.  
  488. // More detection
  489. query bool ActorSeenByActor(Actor actor, Actor observer) "%0 is being seen by %1";
  490. query bool ActorHeardByActor(Actor actor, Actor listener) "%0 is being heard by %1";
  491. query bool PlatoonSeenByPlatoon(Platoon platoon, Platoon observers) "A member of %0 is being seen by %1";
  492. query bool PlatoonHeardByPlatoon(Platoon platoon, Platoon listeners) "A member of %0 is being heard by %1";
  493.  
  494. query bool ActorWounded(Actor actor) "%0 is wounded";
  495.  
  496. // Zone access
  497. query ZoneRef GetCentralArea() "The central area";
  498. query ZoneRef GetReconInsertion() "The recon insertion zone";
  499. query ZoneRef GetReconExtraction() "The recon extraction zone";
  500. query ZoneRef GetBase(int index=0) "Base %0";
  501.  
  502. // Spotlights
  503. query bool SpotlightHasTarget(string spotlight) "%0 has a target";
  504. query ActorRef SpotlightGetTarget(string spotlight) "The target of %0";
  505.  
  506. query bool ZoneValid(ZoneRef zone) "%0 is a valid reference";
  507.  
  508. query int GetCompanyScore(Company company) "The score for %0";
  509.  
  510. query PlatoonRef GetActorPlatoon(Actor actor) "The platoon including %0";
  511.  
  512. query bool CompanyPresent(Company company) "A player on %0 is connected";
  513.  
  514. // Support Teams Allowed
  515. query bool AreSupportTeamsAllowed() "Are support teams allowed";
  516.  
  517. query CompanyColor GetCompanyColor(Company company) "The color of %0";
  518.